home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Technotools
/
Technotools (Chestnut CD-ROM)(1993).ISO
/
database
/
do1beta
/
split.do
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1991-07-25
|
235 b
|
8 lines
/*
demonstrate the String::split() method for splitting
a filename string into path, root, extension
*/
fullname = disk()+"\\test.do";
? "full path and name is ",fullname;
? "split into 3-String Collection: ",split(fullname);